home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////
- //
- // Header file for ControlDerived a subclass template
- //
- // This file is generated by BuilderXcessory, ViewKit code generator.
- //////////////////////////////////////////////////////////////
- #ifndef CONTROLDERIVED_H
- #define CONTROLDERIVED_H
- #include "Control.h"
-
- class VkPeriodic; // Typed line
-
- class ControlDerived : public Control
- {
- protected:
-
- // These functions will be called as a result of callbacks
- // registered in Control
-
- virtual void start(Widget, XtPointer);
- virtual void stop(Widget, XtPointer);
-
- VkPeriodic *_timer; // Typed line
-
- private:
-
- public:
-
- ControlDerived(const char *, Widget);
- ~ControlDerived();
- const char * className();
- void attach(VkPeriodic *t) { _timer = t;} // Typed line
- };
- #endif
-
-